home *** CD-ROM | disk | FTP | other *** search
/ Freelog 117 / FreelogNo117-OctobreNovembre2013.iso / Programmation / jedit / jedit5.1.0install.exe / {app} / macros / Interface / Open_Context_Menu.bsh < prev    next >
Text File  |  2013-07-28  |  570b  |  29 lines

  1. /*
  2. * Open_Context_Menu.bsh - a BeanShell macro script for
  3. * the jEdit text editor - Opens the editor context menu
  4. * just below and to the right of the cursor.
  5. *
  6. * Copyright (C) 2003 Nitsan Vardi
  7. *
  8. * $Id: Open_Context_Menu.bsh 9820 2007-06-17 20:59:58Z vanza $
  9. */
  10.  
  11. openContextMenu(){
  12.     textArea.showPopupMenu();
  13. }
  14.  
  15. openContextMenu();
  16.  
  17. /*
  18.     Macro index data (in DocBook format)
  19.  
  20. <listitem>
  21.     <para><filename>Open_Context_Menu.bsh</filename></para>
  22.     <abstract><para>
  23.         Opens the text area context menu just below the caret.
  24.     </para></abstract>
  25. </listitem>
  26.  
  27. */
  28.  
  29.